home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ W2K Desktop NameSpace MyComp.xpl < prev    next >
Text File  |  2004-02-05  |  1KB  |  42 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Desktop\Icons\'My Computer' Options"
  5. "NAME"="'My Computer' name"
  6. "VERSION"="2.00"
  7. "LANGUAGE"="VBScript"
  8. "OSVERSION"="00010111"
  9. "TEXT 1"="Name"
  10. "DESCRIPTION 1"="Use this plug-in to change the names of "My Computer" on your Windows desktop."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="Thanks to Justin Wood (JustinW396@Yahoo.com) for "My Computer" setting!"
  15.  
  16.  
  17.  
  18. Sub Plugin_Initialize 
  19.  s=RegReadValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\@")
  20.  SetUIElement 1,s
  21. End Sub
  22.  
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27.  
  28.  
  29. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  30.  s=GetUIElement(1)
  31.  Call RegWriteValue("HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\@",s,1)
  32.  
  33.  Call Logoff()
  34. End Sub
  35.  
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.  
  40.  
  41.  
  42.